home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / REGEXP.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  969b  |  42 lines

  1.  
  2. /********************************************
  3. regexp.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /*$Log:    regexp.h,v $
  14.  * Revision 3.3.1.1  91/09/14  17:24:07  brennan
  15.  * VERSION 1.0
  16.  * 
  17.  * Revision 3.3  91/08/13  06:52:01  brennan
  18.  * VERSION .9994
  19.  * 
  20.  * Revision 3.2  91/06/28  04:17:28  brennan
  21.  * VERSION 0.999
  22.  * 
  23.  * Revision 3.1  91/06/07  10:28:12  brennan
  24.  * VERSION 0.995
  25.  * 
  26.  * Revision 2.1  91/04/08  08:23:47  brennan
  27.  * VERSION 0.97
  28.  * 
  29. */
  30.  
  31. #include <stdio.h>
  32.  
  33. PTR   PROTO( REcompile , (char *) ) ;
  34. int   PROTO( REtest, (char *, PTR) ) ;
  35. char *PROTO( REmatch, (char *, PTR, unsigned *) ) ;
  36. void  PROTO( REmprint, (PTR , FILE*) ) ;
  37.  
  38. extern  int  REerrno ;
  39. extern  char *REerrlist[] ;
  40.  
  41.  
  42.